home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_02
/
1102130a
< prev
next >
Wrap
Text File
|
1995-11-01
|
266b
|
18 lines
// date2.h
struct Date
{
int month;
int day;
int year;
// Constructors
Date()
{month = day = year = 0;}
Date(int m, int d, int y)
{month = m; day = d; year = y;}
Date * interval(const Date&);
};